home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWWindow / FWShdWin.h < prev    next >
Encoding:
Text File  |  1996-09-17  |  2.1 KB  |  73 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWShdWin.h
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWSHDWIN_H
  11. #define FWSHDWIN_H
  12.  
  13. #ifndef FWTCOLL_H
  14. #include "FWTColl.h"
  15. #endif
  16.  
  17. #ifndef FWODTYPS_H
  18. #include "FWODTyps.h"
  19. #endif
  20.  
  21. //========================================================================================
  22. //    Forward Declarations
  23. //========================================================================================
  24.  
  25. class FW_CFloatingWindow;
  26.  
  27. //========================================================================================
  28. //    class FW_CPrivSharedWindow
  29. //========================================================================================
  30.  
  31. class FW_CPrivSharedWindow 
  32. {
  33. //----------------------------------------------------------------------------------------
  34. //    Constructors/Destructor
  35. //
  36. public:
  37.     FW_CPrivSharedWindow(ODTypeToken presentationType, const ODDraft* draft);
  38.     ~FW_CPrivSharedWindow();
  39.     
  40. //----------------------------------------------------------------------------------------
  41. //    New API
  42. //
  43. public:
  44.     FW_CFloatingWindow*         GetFloatingWindow(Environment* ev, ODPart* part) const;
  45.     
  46.     ODID                        GetWindowID() const
  47.                                     {return fWindowID;}
  48.     void                        SetWindowID(ODID windowID);
  49.     
  50.     ODTypeToken                    GetPresentationType() const
  51.                                     {return fPresentation;}
  52.                                     
  53.     const ODDraft*                GetDraft() const
  54.                                     {return fDraft;}
  55.                                     
  56.     void                        HideShow(Environment *ev, FW_Boolean state, ODPart* part = NULL);
  57.     
  58.     void                        AddWindow(FW_CFloatingWindow* window);
  59.     void                        RemoveWindow(FW_CFloatingWindow* window);
  60.     long                        CountWindow() const;
  61.     
  62. //----------------------------------------------------------------------------------------
  63. //    Data Members
  64. //
  65. private:
  66.     ODID                                            fWindowID;
  67.     ODTypeToken                                     fPresentation;
  68.     const ODDraft*                                    fDraft;
  69.     FW_Boolean                                        fWasShown;
  70.     FW_TOrderedCollection<FW_CFloatingWindow>*        fWindowList;
  71. };
  72.  
  73. #endif